home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / toolhelp.zip / TEST.H < prev    next >
Text File  |  1991-05-09  |  1KB  |  55 lines

  1. /**************************************************************************
  2.  *  TEST.H
  3.  *
  4.  *      Header file for the TOOLHELP.DLL test program
  5.  *
  6.  **************************************************************************/
  7.  
  8. /* Menu Symbols */
  9. #define ID_MENU         1
  10. #define IDM_TEST_1      1001
  11. #define IDM_TEST_2      1002
  12. #define IDM_TEST_3      1003
  13. #define IDM_TEST_4      1004
  14. #define IDM_TEST_5      1005
  15. #define IDM_TEST_6      1006
  16. #define IDM_TEST_7      1007
  17. #define IDM_TEST_8      1008
  18. #define IDM_TEST_9      1009
  19. #define IDM_TEST_10     1010
  20. #define IDM_TEST_11     1011
  21. #define IDM_TEST_12     1012
  22. #define IDM_EXIT        1100
  23.  
  24. #define IDM_FAULT_1     2001
  25. #define IDM_FAULT_2     2002
  26. #define IDM_FAULT_3     2003
  27. #define IDM_FAULT_4     2004
  28. #define IDM_FAULT_5     2005
  29. #define IDM_FAULT_6     2006
  30. #define IDM_FAULT_7     2007
  31. #define IDM_FAULT_8     2008
  32. #define IDM_FAULT_9     2009
  33.  
  34. #define IDM_NOTIFY_ENABLE   3001
  35. #define IDM_FILTER_ENABLE   3002
  36. #define IDM_NOTIFY_CLEAR    3003
  37.  
  38. #define IDD_FAULT       1
  39. #define IDC_KILL        1
  40. #define IDC_RESTART     101
  41. #define IDC_CHAIN       102
  42. #define IDC_CSIP        200
  43. #define IDC_FAULTNUM    201
  44. #define IDC_HFAULT      202
  45. #define IDC_HPROGRAM    203
  46. #define IDC_STATIC      300
  47.  
  48. /* ----- Function prototypes ----- */
  49.  
  50.     void PASCAL Fault(
  51.         WORD wType);
  52.  
  53.     void FAR PASCAL MyFaultHandler(void);
  54.  
  55.